
       @import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@500;700&display=swap');
    *{
        padding: 0%;
        margin: 0%;
        box-sizing: border-box;
    }  



        /* Navigation */

        /* Main Navbar */
        .main-nav {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .main-nav-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 150px;
            z-index: 3;
            position: absolute;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            gap: 35px;
            list-style: none;
        }
        

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 15px;
            position: relative;
            transition: color 0.3s ease;
            padding: 0.2rem 0.7rem;
        border-radius: 15px;
        text-align: center;
        font-family: 'clamp'(2rem,2vw,2rem);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #8E7D45;
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #8e7d45;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #8e7d45;
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 768px) {
            

            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 50px;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .main-nav-content {
                position: relative;
            }
        }





        /* Hero Carousel Styling */
 /* Slider Container */
    .homeSec_sliderContainer {
      width: 100%;
      position: relative;
      overflow: hidden;
      background: #000;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    /* Slider Wrapper */
    .homeSec_sliderWrapper {
      position: relative;
      width: 100%;
      height: 80vh;
    }

    /* Individual Slides */
    .homeSec_slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.8s ease-in-out;
    }

    .homeSec_slide.active {
      opacity: 1;
    }

    .homeSec_slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    /* Slide Content */
    .homeSec_slideContent {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      color: white;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s ease;
    }

    .homeSec_slide.active .homeSec_slideContent {
      opacity: 1;
      transform: translateY(0);
    }

    .homeSec_slideContent h1 {
      font-size: 2.5rem;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 15px;
    }

    .homeSec_slideContent p {
      font-size: 1.2rem;
      max-width: 800px;
      opacity: 0.9;
      line-height: 1.6;
    }

    /* Navigation Arrows */
    .homeSec_navArrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .homeSec_navArrow:hover {
      background: rgba(255, 255, 255, 0.5);
      transform: translateY(-50%) scale(1.1);      
      backdrop-filter: blur(8px);
    }

    .homeSec_navPrev {
      left: 20px;
    }

    .homeSec_navNext {
      right: 20px;
    }

    .homeSec_navArrow svg {
      width: 22px;
      height: 22px;
      fill: #fff;
    }

    /* Dots Navigation */
    .homeSec_dotsContainer {
      position: absolute;
      bottom: 25px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }

    .homeSec_dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      border: 2px solid white;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .homeSec_dot.active {
      background: white;
      transform: scale(1.3);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .homeSec_sliderWrapper {
        height: 500px;
      }
      .homeSec_slideContent h1 {
        font-size: 2rem;
      }
      .homeSec_slideContent p {
        font-size: 1rem;
      }
    }

    @media (max-width: 768px) {
      .homeSec_sliderWrapper {
        height: 400px;
      }
      .homeSec_navArrow {
        width: 40px;
        height: 40px;
      }
      .homeSec_slideContent h1 {
        font-size: 1.6rem;
      }
      .homeSec_slideContent p {
        font-size: 0.9rem;
      }
    }

    @media (max-width: 576px) {
      .homeSec_sliderWrapper {
        height: 300px;
      }
      .homeSec_slideContent h1 {
        font-size: 1.4rem;
      }
      .homeSec_slideContent p {
        font-size: 0.85rem;
      }
      .homeSec_dotsContainer {
        bottom: 15px;
        gap: 8px;
      }
      .homeSec_dot {
        width: 8px;
        height: 8px;
      }
    }
        /* About Section */
        .about-section {
            position: relative;
            width: 100%;
            min-height: 80vh;
            padding: 1rem 1rem;
            
        }

        .about-images {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 500px;
            margin: 0 auto;
        }

        .about-images img {
            border: 3px solid #fff;
            border-radius: 15px;
            object-fit: cover;
            display: block;
            position: absolute;
        }

        .img-2 {
            width: 60%;
            height: 80%;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
        }

        .img-1 {
            width: 40%;
            height: 40%;
            left: 0;
            bottom: 0;
            transform: translate(10%, -10%);
            z-index: 3;
        }

        .img-3 {
            width: 40%;
            height: 40%;
            right: 0;
            top: 0;
            transform: translate(-10%, 10%);
            z-index: 3;
        }

        .about-text {
            max-width: 600px;
            padding: 2rem 1rem;
        }

        .about-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1rem;
        }

        .about-text p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            line-height: 1.6;
            margin-bottom: 1.8rem;
        }

        .about-text .btn-learn {
            padding: 0.6rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 10px;
            background: #8E7D45;
            color: #3c3268;
            transition: background 0.3s, color 0.3s;
        }

        .about-text .btn-learn:hover {
            background: #3c3268;
            color: #8E7D45;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
         
            .about-images {
                max-width: 400px;
                height: 400px;
                /* margin-bottom: 2rem; */
            }
        }

        @media (max-width: 767px) {
            .carousel {
                height: 100vh;
            }

            .carousel-item {
                height: 100vh;
            }

            .carousel-content {
                padding: 15px;
            }

            .carousel-content p {
                margin-bottom: 1.5rem;
            }

            .btn-primary-custom,
            .btn-secondary-custom {
                padding: 12px 30px;
                font-size: 1rem;
            }

           
            .about-section {
                min-height: auto;
            }

            .about-images {
                max-width: 350px;
                height: 350px;
            }

            .about-text {
                padding: 1rem;
            }
        }

        @media (max-width: 575px) {
            .carousel-content h1 {
                margin-bottom: 1rem;
            }

            .carousel-content p {
                margin-bottom: 1rem;
            }

            .btn-primary-custom,
            .btn-secondary-custom {
                padding: 10px 25px;
                font-size: 0.9rem;
                margin: 5px;
            }

            .about-images {
                max-width: 300px;
                height: 300px;
            }

            .carousel-control-prev,
            .carousel-control-next {
                width: 10%;
            }
        }

        @media (max-width: 400px) {
            .carousel-content {
                padding: 10px;
            }

            .btn-primary-custom,
            .btn-secondary-custom {
                padding: 8px 20px;
                font-size: 0.85rem;
            }

            .about-images {
                max-width: 250px;
                height: 250px;
            }
        }

        /* projects */
         .section-header {
            margin-bottom: 50px;
            text-align: center;
            
        }

        .section-title {
             font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            color: #666;
            font-size: 1rem;
            font-weight: 400;
        }
        .carousel-container{
            height: 70vh;
            width: 100%;
            overflow: hidden;
            
        }
        .carousel-item{
            height: 70vh;
            transition: transform 0.8s ease-in-out;
        }
        .cards-row{
            height: 100%;
            display: flex;
            transition: transform 0.8s ease-in-out;
        }
        .card-pack{
            height: 100%;
            min-width: 25%;
            flex: 0 0 25%;
            background-size: cover;
            background-position: center;
            display: flex;
            border: solid 2px white;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .card-pack::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
            z-index: 1;
        }
        
        .card-pack > * {
            position: relative;
            z-index: 2;
        }
        
        /* Card backgrounds for desktop carousel */
        .card-pack:nth-child(1){
            background-image: url(../images/burban-2.jpg);
        }
        .card-pack:nth-child(2){
            background-image: url(../images/projectpageimg/gaziani-shoppingmall-1.jpg);
        }
        .card-pack:nth-child(3){
            background-image: url(../images/projectpageimg/gaziani-height-1.jpg);
        }
        .card-pack:nth-child(4){
            background-image: url(../images/projectpageimg/gaziani-castle\ -1.jpg);
        }
        
        .card-pack h2{
            margin-bottom: 10px;
             font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .card-pack p{
            margin-bottom: 20px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            font-weight: 300;
            line-height: 1.6;
            letter-spacing: 0.5px;
            max-width: 300px;
        }
        .card-pack button{
            width: fit-content;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 12px 30px;
            border: none;
            background: #8E7D45;
            color: #3B316E;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .card-pack button:hover{
            background: #3B316E;
            color: #8E7D45;
        }
        

        .carousel-indicators button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin: 0 5px;
            display: none;
        }
        
        /* Desktop - show 4 cards */
        @media (min-width: 768px) {
            #desktopCarousel {
                display: block;
            }
            #mobileCarousel {
                display: none;
            }
        }
        
        /* Mobile - show 1 card */
        @media (max-width: 767px) {
            #desktopCarousel {
                display: none;
            }
            #mobileCarousel {
                display: block;
            }
            .carousel-indicators button{
                display: block;
            }
            .carousel-control-prev,
        .carousel-control-next{
            visibility: visible;
        }
            .card-pack {
                min-width: 100%;
                flex: 0 0 100%;
            }
            .card-pack:nth-child(1){
            background-image: url(../images/projectpageimg/gaziani-castle\ -1.jpg);
        }
        .card-pack:nth-child(2){
            background-image: url(../images/projectpageimg/gaziani-height-1.jpg);
        }
        .card-pack:nth-child(3){
            background-image: url(../images/projectpageimg/gaziani-arcade-1.jpg);
        }
        .card-pack:nth-child(4){
            background-image: url(../images/burban-2.jpg);
        }
            .card-pack h2{
                font-size: 2.5rem;
            }
            .card-pack p{
                font-size: 0.95rem;
            }
            .card-pack button{
                padding: 12px 30px;
            }
        }



        /* why choose us */
         .stats-container {
            max-width: 1200px;
            margin: 60px auto;
        }

        .stat-card {
            background: #F9F5F5;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 35px 20px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
            border-color: #d0d0d0;
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: #8E7D45;
        }

        .stat-card.completed .stat-icon {
            border: solid 2px #8E7D45;
        }

        .stat-card.pending .stat-icon {
            border: solid 2px #8E7D45;
        }

        .stat-card.rent .stat-icon {
            border: solid 2px #8E7D45;
        }

        .stat-card.buy .stat-icon {
            border: solid 2px #8E7D45;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
             color: #3B316E;
            margin: 15px 0 10px;
            line-height: 1;
        }

        .stat-label {
            font-size: 18px;
            color: #3B316E;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }

        .section-title p {
            font-size: 16px;
            color: #666;
        }

        @media (max-width: 991px) {
            .stat-card {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 576px) {
            .stat-number {
                font-size: 40px;
            }

            .stat-label {
                font-size: 16px;
            }

            .section-title h2 {
                font-size: 28px;
            }

            .stat-icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }
        }


        /* footer */
         footer {
            background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)), 
                        url('../images/footer.jpg') center/cover no-repeat;
            color: #fff;
            padding: 60px 0 0;
            margin: 60px auto;
            position: relative;
        }

        .footer-content {
            padding-bottom: 30px;
        }

        .footer-logo {
            font-size: 40px;
            font-weight: 700;
            color: #8E7D45;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
      

        .footer-logo i {
            color: #8E7D45;
            font-size: 32px;
        }

        .footer-about p {
            color: #ddd;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .footer-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 25px;
            color: #fff;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: #8E7D45;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: #8E7D45;
            padding-left: 5px;
        }

        .footer-links i {
            font-size: 12px;
        }

        .contact-info {
            list-style: none;
            padding: 0;
        }

        .contact-info li {
            color: #ddd;
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .contact-info i {
            color: #8E7D45;
            font-size: 18px;
            margin-top: 3px;
            min-width: 20px;
        }

        .newsletter-form {
            margin-top: 20px;
        }

        .newsletter-form .input-group {
            border-radius: 8px;
            overflow: hidden;
        }

        .newsletter-form input {
            border: none;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.9);
        }

        .newsletter-form input:focus {
            box-shadow: none;
            background: #fff;
        }

        .newsletter-form button {
            background: #8E7D45;
            border: none;
            color: #3c3268;
            font-weight: 600;
            padding: 0 25px;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: #3c3268;
            color: #8E7D45;
            transform: scale(1.05);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: #8E7D45;
            border: 2px solid #8e7d45;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3c3268;
            font-size: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-links a:hover {
            background-color: #3c3268;
            color: #8E7D45;
            transform: translateY(-5px);
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.3);
            padding: 25px 0;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        

        .footer-bottom p {
            margin: 0;
            color: #ddd;
            text-align: center;
        }

        .footer-bottom a {
            color: #8E7D45;
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #8E7D45;
            color: #3c3268;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: #3c3268;
            color: #8E7D45;
            transform: translateY(-5px);
        }

        @media (max-width: 768px) {
            .footer-content {
                text-align: center;
            }

            .footer-title::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-logo {
                justify-content: center;
            }

            .social-links {
                justify-content: center;
            }

            .footer-links a,
            .contact-info li {
                justify-content: center;
            }

            footer {
                padding: 40px 0 0;
            }

            .main-content h1 {
                font-size: 28px;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .newsletter-form button {
                padding: 0 15px;
                font-size: 14px;
            }
        }

        .whatsapp-float {
  position: fixed;
  bottom: 10px;
  left: 30px;
  background-color: #25d366;
  color: #fff;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
}

.whatsapp-icon {
  vertical-align: middle;
}
